home *** CD-ROM | disk | FTP | other *** search
/ HPAVC / HPAVC CD-ROM.iso / VAP2VOX.ZIP / vapdir.h < prev    next >
Text File  |  1994-11-06  |  632b  |  19 lines

  1. /* vapdir.h - .VAP file directory structures */
  2.  
  3. typedef struct vap_directory_header
  4.    {
  5.     unsigned long max_prompts;    /* Maximum prompts in file */
  6.     unsigned long sampling_rate;    /* Sampling rate for this file */
  7.     unsigned long total_prompts;    /* Total prompts currently in file */
  8.     unsigned long reserved0;
  9.     unsigned long bytes;        /* Bytes used in file */
  10.     unsigned long reserved1;
  11.    } VAPDIRHDR;
  12.  
  13. typedef struct vap_retrieval_entry
  14.    {
  15.     unsigned long start;        /* Start of speech offset in file */
  16.     unsigned long length;        /* Length of speech segment (bytes) */
  17.     unsigned long text;        /* Offset in file of annotation */
  18.    } VAPENTRY;
  19.